home *** CD-ROM | disk | FTP | other *** search
- package javax.swing;
-
- import java.awt.Point;
-
- public class TransferHandler$DropLocation {
- private final Point dropPoint;
-
- protected TransferHandler$DropLocation(Point var1) {
- if (var1 == null) {
- throw new IllegalArgumentException("Point cannot be null");
- } else {
- this.dropPoint = new Point(var1);
- }
- }
-
- public final Point getDropPoint() {
- return new Point(this.dropPoint);
- }
-
- public String toString() {
- return this.getClass().getName() + "[dropPoint=" + this.dropPoint + "]";
- }
- }
-